-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Hyper-v platform] Enabling more testcases to run on Hyper-V platform #3623
base: main
Are you sure you want to change the base?
Conversation
microsoft/testsuites/core/dhcp.py
Outdated
@@ -33,7 +33,7 @@ class Dhcp(TestSuite): | |||
|
|||
""", | |||
priority=1, | |||
requirement=simple_requirement(supported_platform_type=[AZURE, READY]), | |||
requirement=simple_requirement(supported_platform_type=[AZURE, READY, HYPERV]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this case is needed on Hyper-V platform
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't actually hurt running this on Hyper-V. Fixed it anyway as you suggested.
@@ -32,7 +32,9 @@ | |||
It is responsible for ensuring the Hyper V drivers are all present, | |||
are included in initrd, and are all the same version. | |||
""", | |||
requirement=simple_requirement(supported_platform_type=["azure", "ready"]), | |||
requirement=simple_requirement( | |||
supported_platform_type=["azure", "ready", "hyperv"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use consts like other cases.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
@LiliDeng please let me know if anything more is needed on this PR. |
This PR will enable more tests to run on Hyper-v platform.